home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / pprd199.zip / LOG < prev    next >
Text File  |  1996-10-09  |  6KB  |  174 lines

  1. 0.90    First release
  2.  
  3. 0.91    Provide one extra connection so that lpq requests can get
  4.     through and return status. Lprm requests fail; they make no
  5.     sense.
  6.  
  7.     Display IP address of client.
  8.  
  9.     Rudimentary security. Server and client must both be on same
  10.     subnet. Can be disabled with -s option.
  11.  
  12.     More security; allow and deny IP lists.
  13.  
  14.     Distribution includes lpr.pl for the ifilter and banner.pl for
  15.     the ofilter on Berkeley LPD systems.
  16.  
  17.     Announce available printers with tones: C,D,E
  18.  
  19. 0.92    More information on lpq status: on/offline, paper out.
  20.  
  21.     Option -n to override number of printers reported by BIOS.
  22.  
  23.     Option -lhostip logs startup message and status changes to
  24.     syslogd on host.
  25.  
  26.     Fixed bug in lpr.pl. Was sending out data file again as control
  27.     file. Remnants of test implementation. Made lpr.pl unworkable
  28.     with standard LPDs and also wasted channel capacity.
  29.  
  30. 0.93    Report jobname, username and hostname on completion of job.
  31.  
  32.     Use name resolution so names can be specified for -a, -d and
  33.     -l.
  34.  
  35. 0.94    Conformance to RFC1179. Control and data files in either
  36.     order.  Use N for jobname rather than J. Limits on username and
  37.     hostname now conform to RFC. Jobname truncated to 31 chars
  38.     though.
  39.  
  40.     Respond to long query request as for short query.
  41.  
  42.     Changes to lpr.pl to match. Try to use ports 721 to 731
  43.     inclusive.  Naming conventions for data and control files as
  44.     RFC.
  45.  
  46. 0.95    Add -j option to select direct (telnet-like) protocol. Just
  47.     a raw byte stream, ended by closing the connection. On port
  48.     9100+n (n=0,1,2) by default.
  49.  
  50.     Provided jd.pl to send data by direct protocol.
  51.  
  52.     Fixed harmless comparison operator bugs in lpr.pl.
  53.  
  54.     Fixed bug in lpr.pl where control and data were using same
  55.     count of bytes because same variable was used.
  56.  
  57.     Improved buffering strategy: if printer is busy, keep
  58.     collecting data as long as there is room in buffer. Allows
  59.     clients that send small packets to continue sending without
  60.     being blocked by printer handshake.
  61.  
  62. 0.96    Fixed bug where server closed connection before printing everything
  63.     in direct mode. Doesn't happen in lpd mode because of handshake.
  64.  
  65.     Forgot to provide jd.pl in last release.
  66.  
  67.     New program jd.exe, a DOS client for direct protocol.
  68.  
  69.     Use DOS LPT to COM redirection in conjunction with TSRCOMM,
  70.     an interrupt I/O serial driver. See documentation in LPTCOM.ZIP.
  71.  
  72.     Provided documentation in pprd.doc and jd.doc.
  73.  
  74. 0.97    Added -i option to pprd to reinitialise printer via hardware line
  75.     when job aborted via C-Fn keys.
  76.  
  77.     Send a reset via sock_abort when job cancelled from console so
  78.     that client will receive notification of a broken connection.
  79.     Lpr.pl and jd.pl changed to take note of this.
  80.  
  81.     New program jdlprd.pl for Unix systems to provide a jd to lpr
  82.     gateway so jd.exe can send jobs to Unix also.
  83.  
  84.     Harmless typo in jd.pl.
  85.  
  86.     No need to call tcp_shutdown() in jd.c. It will be done by
  87.     atexit().
  88.  
  89. 0.98    Bug in pprd.c. Under some circumstances, PPRD may miss a EOF
  90.     from the client, leaving it stuck in the protocol.
  91.  
  92.     Bug on lpr.pl. Forgot to adjust length to send EOF byte too.
  93.  
  94.     New feature. Printers can be assigned names in wattcp.cfg.
  95.     Defaults are lpt[123].
  96.  
  97. 0.99    For printing via BIOS, interface will not be ready after the
  98.     print call, so check again. Should be able to batch the
  99.     bytes better.
  100.  
  101.     Direct write to hardware port can be selected by -b. Should
  102.     be able to handle fast interfaces better than BIOS. Won't
  103.     make much difference with slow printers because the bottleneck
  104.     is the printer in that case.
  105.  
  106.     Moved most operation instructions out of README.  Documentation
  107.     in nroff format. Printable version supplied.
  108.  
  109. 1.00    Final version.
  110.  
  111.     Tweak printer status checking in loop.
  112.  
  113.     Print out statistics at end of job.
  114.  
  115. 1.01    Bug fix
  116.  
  117.     Steve Pacenka discovered that ack not sent at end of job.
  118.  
  119. 1.95    New cycle
  120.  
  121.     Try to improve buffering strategy and memory usage, so:
  122.     Circular buffer instead of fill/empty strategy.
  123.     Compile in compact memory model to use far heap.
  124.     Allocate larger buffers from far heap.
  125.  
  126.     Put under Artistic License instead of GNU Copyleft because
  127.     of disgust with RMS's tasteless handing of Lignux affair.
  128.  
  129. 1.96    Bug in buffer size tracking. Macros would fail if < 63k allocated.
  130.  
  131.     Do status polling right when using BIOS printing routines.
  132.  
  133.     Institute a turn counter for fairness between reading and writing.
  134.  
  135.     Implement joblen == 0 means EOF == EOJ for lpd protocol. Not tested.
  136.  
  137. 1.97    Adaptive task scheduling, give reader/writer a turn for every 1/8th
  138.     of the buffer empty/full.
  139.  
  140.     Limit BIOS printer output to 2048 bytes at a time to prevent
  141.     printer from hogging schedule.
  142.  
  143. 1.98    Made memory debugging display a command line option
  144.  
  145.     Added option to skip printing, just to show transfer stats
  146.  
  147.     Add checked tcp_tick call to WAITING state, otherwise a quick
  148.     connect and exit hangs the channel.
  149.  
  150.     Added hack to jd.pl to wait for server to be ready again before
  151.     exiting, or it will fail to connect on next job while current one
  152.     is printing.
  153.  
  154.     Skip printing stats if connection closed without any data transfer.
  155.     Also if connection closed with NAK.
  156.  
  157. 1.99    Added 1 second delay between sock_flush and sock_close to cater
  158.     to TCP/IP stacks and clients that can't handle a connection close
  159.     too soon after final data. The problem client: pmlpr on top of
  160.     MS tcp32b. Not sure which one is the guilty party. Maybe other
  161.     clients too. (Gee I never get such problems with decent clients
  162.     like Unix lprs, or even the DOS lprs.)
  163.  
  164.     Implemented suggestions from Scott Brynen: flag to output
  165.     to console for testing. Arguments to -a and -d can be network
  166.     addresses, where the hostid part, as determined using the netmask,
  167.     is all 0.
  168.  
  169.     Abort the job if sender disconnects.  Some clients don't handle
  170.     this properly, in this case DOS lprs.  Unix lpr works fine.
  171.  
  172.     Use getopt instead of doing argument parsing ourselves. Side
  173.     effect, -j requires an argument now.
  174.